1 2 3 4 5 6 7 8 9 10 11 12 13 14
| Pod::Spec.new do |s| s.name = "MJExtension" s.version = "0.0.1" s.summary = "The fastest and most convenient conversion between JSON and model" s.homepage = "https://github.com/CoderMJLee/MJExtension" s.license = "MIT" s.author = { "MJLee" => "xxxxx@qq.com" } s.social_media_url = "http://weibo.com/exceptions" s.source = { :git => "https://github.com/CoderMJLee/MJExtension.git", :tag => s.version } s.frameworks = "UIKit", "Foundation" s.platform = :ios, "8.0" s.source_files = "MJExtensionExample/MJExtensionExample/MJExtension" s.requires_arc = true end
|